home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue39 / userint / Editor.dfm / Editor.txt
Encoding:
Text File  |  1998-08-06  |  2.4 KB  |  122 lines

  1. object EditWin: TEditWin
  2.   Left = 236
  3.   Top = 172
  4.   Width = 735
  5.   Height = 516
  6.   Caption = 'EditWin'
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -13
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   OldCreateOrder = False
  14.   PixelsPerInch = 120
  15.   TextHeight = 16
  16.   object LeftSplitter: TSplitter
  17.     Left = 0
  18.     Top = 0
  19.     Width = 3
  20.     Height = 486
  21.     Cursor = crHSplit
  22.     Visible = False
  23.   end
  24.   object BottomSplitter: TSplitter
  25.     Left = 0
  26.     Top = 486
  27.     Width = 727
  28.     Height = 3
  29.     Cursor = crVSplit
  30.     Align = alBottom
  31.     Visible = False
  32.   end
  33.   object LeftDockPanel: TPanel
  34.     Left = 3
  35.     Top = 0
  36.     Width = 0
  37.     Height = 486
  38.     Align = alLeft
  39.     Caption = 'LeftDockPanel'
  40.     DockSite = True
  41.     TabOrder = 0
  42.     OnDockDrop = DockPanelDockDrop
  43.     OnDockOver = LeftDockPanelDockOver
  44.     OnGetSiteInfo = DockPanelGetSiteInfo
  45.     OnUnDock = DockPanelUnDock
  46.   end
  47.   object RightDockPanel: TPanel
  48.     Left = 727
  49.     Top = 0
  50.     Width = 0
  51.     Height = 486
  52.     Align = alRight
  53.     AutoSize = True
  54.     Caption = 'RightDockPanel'
  55.     DockSite = True
  56.     TabOrder = 1
  57.     OnDockDrop = DockPanelDockDrop
  58.     OnUnDock = DockPanelUnDock
  59.   end
  60.   object BottomDockPanel: TPanel
  61.     Left = 0
  62.     Top = 486
  63.     Width = 727
  64.     Height = 0
  65.     Align = alBottom
  66.     Caption = 'BottomDockPanel'
  67.     DockSite = True
  68.     TabOrder = 2
  69.     OnDockDrop = DockPanelDockDrop
  70.     OnDockOver = BottomDockPanelDockOver
  71.     OnGetSiteInfo = DockPanelGetSiteInfo
  72.     OnUnDock = DockPanelUnDock
  73.   end
  74.   object EditPanel: TPanel
  75.     Left = 3
  76.     Top = 0
  77.     Width = 724
  78.     Height = 486
  79.     Align = alClient
  80.     Caption = 'EditPanel'
  81.     TabOrder = 3
  82.     object RichEdit1: TRichEdit
  83.       Left = 1
  84.       Top = 1
  85.       Width = 722
  86.       Height = 484
  87.       Align = alClient
  88.       BiDiMode = bdRightToLeft
  89.       Lines.Strings = (
  90.         'unit Unit2;'
  91.         ''
  92.         'interface'
  93.         ''
  94.         'uses'
  95.         
  96.           '  Windows, Messages, SysUtils, Classes, Graphics, Controls, Form' +
  97.           's, Dialogs;'
  98.         ''
  99.         'type'
  100.         '  TForm2 = class(TForm)'
  101.         '  private'
  102.         '    { Private declarations }'
  103.         '  public'
  104.         '    { Public declarations }'
  105.         '  end;'
  106.         ''
  107.         'var'
  108.         '  Form2: TForm2;'
  109.         ''
  110.         'implementation'
  111.         ''
  112.         '{$R *.DFM}'
  113.         ''
  114.         'end.'
  115.         ' ')
  116.       ParentBiDiMode = False
  117.       ScrollBars = ssBoth
  118.       TabOrder = 0
  119.     end
  120.   end
  121. end
  122.